home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / zvmem2.c < prev    next >
C/C++ Source or Header  |  1997-03-08  |  4KB  |  152 lines

  1. /* Copyright (C) 1992, 1993, 1994, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zvmem2.c */
  20. /* Level 2 "Virtual memory" operators */
  21. #include "ghost.h"
  22. #include "errors.h"
  23. #include "oper.h"
  24. #include "estack.h"
  25. #include "ialloc.h"            /* for ivmspace.h */
  26. #include "ivmspace.h"
  27. #include "store.h"
  28.  
  29. /* Garbage collector control parameters. */
  30. #define default_vm_threshold_SMALL 20000
  31. #define default_vm_threshold_LARGE 250000
  32. #if arch_small_memory
  33. #  define default_vm_threshold default_vm_threshold_SMALL
  34. #else
  35. #  define default_vm_threshold\
  36.      (gs_if_debug_c('.') ? default_vm_threshold_SMALL :\
  37.       default_vm_threshold_LARGE)
  38. #endif
  39. #define min_vm_threshold 1
  40. #define max_vm_threshold max_long
  41.  
  42. /* ------ Local/global VM control ------ */
  43.  
  44. /* <bool> .setglobal - */
  45. private int
  46. zsetglobal(register os_ptr op)
  47. {    check_type(*op, t_boolean);
  48.     ialloc_set_space(idmemory,
  49.              (op->value.boolval ? avm_global : avm_local));
  50.     pop(1);
  51.     return 0;
  52. }
  53.  
  54. /* <bool> .currentglobal - */
  55. private int
  56. zcurrentglobal(register os_ptr op)
  57. {    push(1);
  58.     make_bool(op, ialloc_space(idmemory) != avm_local);
  59.     return 0;
  60. }
  61.  
  62. /* <any> gcheck/scheck <bool> */
  63. private int
  64. zgcheck(register os_ptr op)
  65. {    check_op(1);
  66.     make_bool(op, (r_is_local(op) ? false : true));
  67.     return 0;
  68. }
  69.  
  70. /* ------ Garbage collector control ------ */
  71.  
  72. /* These routines are exported for setuserparams. */
  73.  
  74. /* <int> setvmthreshold - */
  75. int
  76. set_vm_threshold(long val)
  77. {    gs_memory_gc_status_t stat;
  78.     if ( val < -1 )
  79.         return_error(e_rangecheck);
  80.     else if ( val == -1 )
  81.         val = default_vm_threshold;
  82.     else if ( val < min_vm_threshold )
  83.         val = min_vm_threshold;
  84.     else if ( val > max_vm_threshold )
  85.         val = max_vm_threshold;
  86.     gs_memory_gc_status(idmemory->space_global, &stat);
  87.     stat.vm_threshold = val;
  88.     gs_memory_set_gc_status(idmemory->space_global, &stat);
  89.     gs_memory_gc_status(idmemory->space_local, &stat);
  90.     stat.vm_threshold = val;
  91.     gs_memory_set_gc_status(idmemory->space_local, &stat);
  92.     return 0;
  93. }
  94. private int
  95. zsetvmthreshold(register os_ptr op)
  96. {    int code;
  97.     check_type(*op, t_integer);
  98.     code = set_vm_threshold(op->value.intval);
  99.     if ( code >= 0 )
  100.         pop(1);
  101.     return code;
  102. }
  103.  
  104. /* <int> vmreclaim - */
  105. int
  106. set_vm_reclaim(long val)
  107. {    if ( val >= -2 && val <= 0 )
  108.     {    gs_memory_gc_status_t stat;
  109.         gs_memory_gc_status(idmemory->space_system, &stat);
  110.         stat.enabled = val >= -1;
  111.         gs_memory_set_gc_status(idmemory->space_system, &stat);
  112.         gs_memory_gc_status(idmemory->space_global, &stat);
  113.         stat.enabled = val >= -1;
  114.         gs_memory_set_gc_status(idmemory->space_global, &stat);
  115.         gs_memory_gc_status(idmemory->space_local, &stat);
  116.         stat.enabled = val == 0;
  117.         gs_memory_set_gc_status(idmemory->space_local, &stat);
  118.         return 0;
  119.     }
  120.     else
  121.         return_error(e_rangecheck);
  122. }    
  123. private int
  124. zvmreclaim(register os_ptr op)
  125. {    check_type(*op, t_integer);
  126.     if ( op->value.intval == 1 || op->value.intval == 2 )
  127.       {    /* Force the interpreter to store its state and exit. */
  128.         /* The interpreter's caller will do the actual GC. */
  129.         return_error(e_VMreclaim);
  130.       }
  131.     else
  132.       {    int code = set_vm_reclaim(op->value.intval);
  133.         if ( code >= 0 )
  134.           pop(1);
  135.         return code;
  136.       }
  137. }
  138.  
  139. /* ------ Initialization procedure ------ */
  140.  
  141. /* The VM operators are defined even if the initial language level is 1, */
  142. /* because we need them during initialization. */
  143. BEGIN_OP_DEFS(zvmem2_op_defs) {
  144.     {"0.currentglobal", zcurrentglobal},
  145.     {"1.gcheck", zgcheck},
  146.     {"1.setglobal", zsetglobal},
  147.         /* The rest of the operators are defined only in Level 2. */
  148.         op_def_begin_level2(),
  149.     {"1setvmthreshold", zsetvmthreshold},
  150.     {"1vmreclaim", zvmreclaim},
  151. END_OP_DEFS(0) }
  152.